home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 August: Tool Chest / Dev.CD Aug 94.toast / Tool Chest / Development Platforms / Macintosh Common Lisp Related / interfaces / PInterface Translator / patches / aiff.patch next >
Encoding:
Text File  |  1993-09-16  |  509 b   |  19 lines  |  [TEXT/CCL2]

  1. (defrecord InstrumentChunk 
  2.    (ckID :signed-long)
  3.    (ckSize :signed-long)
  4.    (filler1 :signed-byte)
  5.    (baseFrequency :unsigned-byte)
  6.    (filler2 :signed-byte)
  7.    (detune :unsigned-byte)
  8.    (filler3 :signed-byte)
  9.    (lowFrequency :unsigned-byte)
  10.    (filler4 :signed-byte)
  11.    (highFrequency :unsigned-byte)
  12.    (filler5 :signed-byte)
  13.    (lowVelocity :unsigned-byte)
  14.    (filler6 :signed-byte)
  15.    (highVelocity :unsigned-byte)
  16.    (gain :signed-integer)
  17.    (sustainLoop :aiffloop)
  18.    (releaseLoop :aiffloop)
  19.    )